home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / make_vcslib.script < prev    next >
Encoding:
Text File  |  1995-10-29  |  3.3 KB  |  148 lines

  1. echo "This make take some time..."
  2.  
  3. alias cc vc -O2 -sd
  4.  
  5. echo "Processing _main etc..."
  6. cc -c _lmath.s
  7. cc -c _main.c
  8. cc -c errno.c
  9. cc -c _errors.c
  10. cc -c _chkabort.c
  11. echo "Processing ctype..."
  12. cc -c ctype/*.c
  13. echo "Processing stdio..."
  14. cc -c stdio/*.c
  15. echo "Processing stdlib..."
  16. cc -c stdlib/*.c
  17. echo "Processing string..."
  18. cc -c string/*.c
  19. echo "Processing time..."
  20. cc -c time/*.c
  21. echo "Processing setjmp..."
  22. cc -c setjmp/*.s
  23. echo "Processing signal..."
  24. cc -c signal/*.c
  25. echo "Processing locale..."
  26. cc -c locale/*.c
  27.  
  28. echo "Joining everything together..."
  29. alib r vcs _main
  30. alib r vcs _chkabort
  31. alib r vcs _lmath
  32. alib r vcs errno
  33. alib r vcs _errors
  34. alib r vcs ctype/isalnum
  35. alib r vcs ctype/isalpha
  36. alib r vcs ctype/iscntrl
  37. alib r vcs ctype/isdigit
  38. alib r vcs ctype/isgraph
  39. alib r vcs ctype/islower
  40. alib r vcs ctype/isprint
  41. alib r vcs ctype/ispunct
  42. alib r vcs ctype/isspace
  43. alib r vcs ctype/isupper
  44. alib r vcs ctype/isxdigit
  45. alib r vcs ctype/tolower
  46. alib r vcs ctype/toupper
  47. alib r vcs ctype/_ctype_
  48. alib r vcs stdio/fclose
  49. alib r vcs stdio/fflush
  50. alib r vcs stdio/fgetc
  51. alib r vcs stdio/fgets
  52. alib r vcs stdio/fopen
  53. alib r vcs stdio/fputc
  54. alib r vcs stdio/fputs
  55. alib r vcs stdio/gets
  56. alib r vcs stdio/puts
  57. alib r vcs stdio/remove
  58. alib r vcs stdio/rename
  59. alib r vcs stdio/_fillbuf
  60. alib r vcs stdio/_flushbuf
  61. alib r vcs stdio/_putbuf
  62. alib r vcs stdio/ungetc
  63. alib r vcs stdio/ftell
  64. alib r vcs stdio/fseek
  65. alib r vcs stdio/fread
  66. alib r vcs stdio/fwrite
  67. alib r vcs stdio/setvbuf
  68. alib r vcs stdio/vfprintf
  69. alib r vcs stdio/printf
  70. alib r vcs stdio/vprintf
  71. alib r vcs stdio/fprintf
  72. alib r vcs stdio/vfscanf
  73. alib r vcs stdio/vsprintf
  74. alib r vcs stdio/sprintf
  75. alib r vcs stdio/vscanf
  76. alib r vcs stdio/scanf
  77. alib r vcs stdio/fscanf
  78. alib r vcs stdio/sscanf
  79. alib r vcs stdio/vsscanf
  80. alib r vcs stdio/getchar
  81. alib r vcs stdio/freopen
  82. alib r vcs stdio/tmpfile
  83. alib r vcs stdio/tmpnam
  84. alib r vcs stdio/setbuf
  85. alib r vcs stdio/putchar
  86. alib r vcs stdio/rewind
  87. alib r vcs stdio/fgetpos
  88. alib r vcs stdio/fsetpos
  89. alib r vcs stdio/clearerr
  90. alib r vcs stdio/feof
  91. alib r vcs stdio/ferror
  92. alib r vcs stdio/prerror
  93. alib r vcs stdlib/malloc
  94. alib r vcs stdlib/system
  95. alib r vcs stdlib/rand
  96. alib r vcs stdlib/calloc
  97. alib r vcs stdlib/strtol
  98. alib r vcs stdlib/strtoul
  99. alib r vcs stdlib/atol
  100. alib r vcs stdlib/atoi
  101. alib r vcs stdlib/abs
  102. alib r vcs stdlib/labs
  103. alib r vcs stdlib/div
  104. alib r vcs stdlib/ldiv
  105. alib r vcs stdlib/qsort
  106. alib r vcs stdlib/bsearch
  107. alib r vcs stdlib/getenv
  108. alib r vcs stdlib/abort
  109. alib r vcs stdlib/atexit
  110. alib r vcs string/memchr
  111. alib r vcs string/memcmp
  112. alib r vcs string/memcpy
  113. alib r vcs string/memmove
  114. alib r vcs string/memset
  115. alib r vcs string/strcat
  116. alib r vcs string/strcpy
  117. alib r vcs string/strcmp
  118. alib r vcs string/strncmp
  119. alib r vcs string/strncpy
  120. alib r vcs string/strchr
  121. alib r vcs string/strncat
  122. alib r vcs string/strstr
  123. alib r vcs string/strpbrk
  124. alib r vcs string/strrchr
  125. alib r vcs string/strspn
  126. alib r vcs string/strlen
  127. alib r vcs string/strcspn
  128. alib r vcs string/strerror
  129. alib r vcs string/strtok
  130. alib r vcs time/__gmtoffset
  131. alib r vcs time/time
  132. alib r vcs time/clock
  133. alib r vcs time/asctime
  134. alib r vcs time/localtime
  135. alib r vcs time/mktime
  136. alib r vcs time/gmtime
  137. alib r vcs time/strftime
  138. alib r vcs setjmp/setjmp
  139. alib r vcs signal/signal
  140. alib r vcs signal/raise
  141. alib r vcs locale/setlocale
  142. alib r vcs locale/localeconv
  143.  
  144. cp vcs.lib vlib:
  145.  
  146. echo "Done! vcs.lib copied to vlib:"
  147.  
  148.